home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Whiteline: delta
/
whiteline CD Series - delta.iso
/
progtool
/
gnu
/
gnushell
/
examples
/
main.c
< prev
next >
Wrap
C/C++ Source or Header
|
1995-11-25
|
207b
|
15 lines
#include <stdio.h>
#include "MODUL1.H"
#include "MODUL2.H"
int main(void)
{
char h[] = "hello";
char w[] = "WORLD";
Capital(h);
LowerCase(w);
printf("%s %s\n", h, w);
return 0;
}